Vector メモ
Vectorトポロジ
Sources
Vectorがデータを収集/受信するデータソース
Transforms
観測データの変換層
Sinks
出力先
例
code:vector.toml
type = "stdin"
type = "console"
encoding.codec = "text"
sources.inというコンポーネントは標準入力をデータソースとしinというIDが振られる
sink.outコンポーネントはconsole sinkを用いて標準出力に吐き出す.データはそのまま
↑先程のinからデータを持ってくる
echo "Hello" | vector -c ./vector.tomlで
Helloが吐かれる